mission = 
{
    trig = 
    {
        actions = 
        {
            [1] = "a_activate_group(\"KAMAZ Transport Unit 2\"); mission.trig.func[1]='';",
            [2] = "a_activate_group(\"ZU-23 Ural\"); mission.trig.func[2]='';",
            [3] = "a_out_text_delay(\"Enfield, Snooki here, Enemy Transport Group sighted in South-East Poti, moving North-West through the center of the city. Acquire moving targets and watch out for the T-80U escort tank behind the convoy!\", \"15\");a_out_sound(\"Ground Unit Contact 1.wav\"); mission.trig.func[3]='';",
            [4] = "a_out_text_delay(\"Enfield, this is Snooki, we have a second enemy transport unit in nord Poti directing South, proceed with the attack! Out.\", \"15\");a_out_sound(\"Ground Unit Contact 2.wav\"); mission.trig.func[4]='';",
            [5] = "a_out_text_delay(\"Enfield, this is Snooki, no more enemy transport units moving inside the city, great job Enfield! Return to base, Out.\", \"12\");a_out_sound(\"End Mission.wav\"); mission.trig.func[5]='';",
            [6] = "a_activate_group(\"Russian Infantry 1\");a_activate_group(\"Russian Infantry 2\");a_activate_group(\"USA Infantry 1\");a_activate_group(\"USA Infantry 2\"); mission.trig.func[6]='';",
        }, -- end of actions
        custom = 
        {
        }, -- end of custom
        func = 
        {
            [1] = "if mission.trig.conditions[1]() then mission.trig.actions[1]() end",
            [2] = "if mission.trig.conditions[2]() then mission.trig.actions[2]() end",
            [3] = "if mission.trig.conditions[3]() then mission.trig.actions[3]() end",
            [4] = "if mission.trig.conditions[4]() then mission.trig.actions[4]() end",
            [5] = "if mission.trig.conditions[5]() then mission.trig.actions[5]() end",
            [6] = "if mission.trig.conditions[6]() then mission.trig.actions[6]() end",
        }, -- end of func
        flag = 
        {
            [1] = true,
            [2] = true,
            [3] = true,
            [4] = true,
            [5] = true,
            [6] = true,
        }, -- end of flag
        conditions = 
        {
            [1] = "return(c_group_dead(\"KAMAZ Transport Unit 1\") )",
            [2] = "return(c_unit_in_zone(\"28\", \"To Activate ZU-23\") )",
            [3] = "return(c_unit_in_zone(\"1\", \"Ground Unit Contact 1\") )",
            [4] = "return(c_group_dead(\"KAMAZ Transport Unit 1\") )",
            [5] = "return(c_group_dead(\"KAMAZ Transport Unit 2\") )",
            [6] = "return(c_unit_in_zone(\"1\", \"Activate Ground Battle\") )",
        }, -- end of conditions
        customStartup = 
        {
            [6] = "for i,t in ipairs(mission.result.offline.actions) do mission.result.offline.actions[i]=loadstring(t) end",
            [2] = "for i,t in ipairs(mission.result.blue.conditions) do mission.result.blue.conditions[i]=loadstring(t) end",
            [8] = "for i,t in ipairs(mission.trig.actions) do mission.trig.actions[i]=loadstring(t) end",
            [3] = "for i,t in ipairs(mission.result.offline.conditions) do mission.result.offline.conditions[i]=loadstring(t) end",
            [1] = "for i,t in ipairs(mission.result.red.conditions) do mission.result.red.conditions[i]=loadstring(t) end",
            [4] = "for i,t in ipairs(mission.result.red.actions) do mission.result.red.actions[i]=loadstring(t) end",
            [5] = "for i,t in ipairs(mission.result.blue.actions) do mission.result.blue.actions[i]=loadstring(t) end",
            [7] = "for i,t in ipairs(mission.trig.conditions) do mission.trig.conditions[i]=loadstring(t) end",
        }, -- end of customStartup
        funcStartup = 
        {
        }, -- end of funcStartup
    }, -- end of trig
    resultRed = 
    {
    }, -- end of resultRed
    resultBlue = 
    {
    }, -- end of resultBlue
    descriptionBlueTask = "Locate and destroy all enemy ground transport units.",
    goals = 
    {
        [1] = 
        {
            rules = 
            {
                [1] = 
                {
                    group = 3,
                    predicate = "c_group_dead",
                    unit = "",
                }, -- end of [1]
            }, -- end of rules
            score = 50,
            side = "OFFLINE",
            predicate = "score",
            comment = "Killed Transport Group 1",
        }, -- end of [1]
        [2] = 
        {
            rules = 
            {
                [1] = 
                {
                    group = 5,
                    predicate = "c_group_dead",
                    unit = "",
                }, -- end of [1]
            }, -- end of rules
            score = 100,
            side = "OFFLINE",
            predicate = "score",
            comment = "Killed Transport Group 2",
        }, -- end of [2]
    }, -- end of goals
    trigfunc = 
    {
        [1] = "if c_group_dead(\"KAMAZ Transport Unit 1\") then a_activate_group(\"KAMAZ Transport Unit 2\"); mission.trigfunc[1]='';end;",
        [2] = "if c_unit_in_zone(\"28\", \"To Activate ZU-23\") then a_activate_group(\"ZU-23 Ural\"); mission.trigfunc[2]='';end;",
        [3] = "if c_unit_in_zone(\"1\", \"Ground Unit Contact 1\") then a_out_text_delay(\"Enfield, Snooki here, Enemy Transport Group sighted in South-East Poti, moving North-West through the center of the city. Acquire moving targets and watch out for the T-80U escort tank behind the convoy!\", \"15\");a_out_sound(\"Ground Unit Contact 1.wav\"); mission.trigfunc[3]='';end;",
        [4] = "if c_group_dead(\"KAMAZ Transport Unit 1\") then a_out_text_delay(\"Enfield, this is Snooki, we have a second enemy transport unit in nord Poti directing South, proceed with the attack! Out.\", \"15\");a_out_sound(\"Ground Unit Contact 2.wav\"); mission.trigfunc[4]='';end;",
        [5] = "if c_group_dead(\"KAMAZ Transport Unit 2\") then a_out_text_delay(\"Enfield, this is Snooki, no more enemy transport units moving inside the city, great job Enfield! Return to base, Out.\", \"12\");a_out_sound(\"End Mission.wav\"); mission.trigfunc[5]='';end;",
        [6] = "if c_unit_in_zone(\"1\", \"Activate Ground Battle\") then a_activate_group(\"Russian Infantry 1\");a_activate_group(\"Russian Infantry 2\");a_activate_group(\"USA Infantry 1\");a_activate_group(\"USA Infantry 2\"); mission.trigfunc[6]='';end;",
    }, -- end of trigfunc
    weather = 
    {
        qnh = 760,
        wind = 
        {
            at8000 = 
            {
                speed = 0,
                dir = 0,
            }, -- end of at8000
            atGround = 
            {
                speed = 0,
                dir = 0,
            }, -- end of atGround
            at2000 = 
            {
                speed = 0,
                dir = 0,
            }, -- end of at2000
        }, -- end of wind
        name = "Winter, clean sky",
        fog = 
        {
            thickness = 0,
            density = 0,
        }, -- end of fog
        turbulence = 
        {
            at8000 = 0,
            atGround = 0,
            at2000 = 0,
        }, -- end of turbulence
        visibility = 
        {
            distance = 80000,
        }, -- end of visibility
        season = 
        {
            iseason = 1,
            temperature = 28,
        }, -- end of season
        clouds = 
        {
            density = 3,
            thickness = 230,
            base = 3000,
            iprecptns = 0,
        }, -- end of clouds
    }, -- end of weather
    result = 
    {
        [1] = "if c_group_dead(\"KAMAZ Transport Unit 1\")  then a_set_mission_result(50) end",
        [2] = "if c_group_dead(\"KAMAZ Transport Unit 2\")  then a_set_mission_result(100) end",
        offline = 
        {
            conditions = 
            {
                [1] = "return(c_group_dead(\"KAMAZ Transport Unit 1\") )",
                [2] = "return(c_group_dead(\"KAMAZ Transport Unit 2\") )",
            }, -- end of conditions
            actions = 
            {
                [1] = "a_set_mission_result(50)",
                [2] = "a_set_mission_result(100)",
            }, -- end of actions
            func = 
            {
                [1] = "if mission.result.offline.conditions[1]() then mission.result.offline.actions[1]() end",
                [2] = "if mission.result.offline.conditions[2]() then mission.result.offline.actions[2]() end",
            }, -- end of func
        }, -- end of offline
        blue = 
        {
            conditions = 
            {
            }, -- end of conditions
            actions = 
            {
            }, -- end of actions
            func = 
            {
            }, -- end of func
        }, -- end of blue
        red = 
        {
            conditions = 
            {
            }, -- end of conditions
            actions = 
            {
            }, -- end of actions
            func = 
            {
            }, -- end of func
        }, -- end of red
    }, -- end of result
    triggers = 
    {
        zones = 
        {
            [1] = 
            {
                radius = 3400,
                zoneId = 3,
                color = 
                {
                    [1] = 1,
                    [2] = 1,
                    [3] = 1,
                    [4] = 0.15,
                }, -- end of color
                lat = 0.73525621481251,
                hidden = true,
                long = 0.72767078782774,
                x = -297425.01050304,
                name = "Activate Ground Battle",
                y = 619017.29704958,
            }, -- end of [1]
            [2] = 
            {
                radius = 1000,
                zoneId = 2,
                color = 
                {
                    [1] = 1,
                    [2] = 1,
                    [3] = 1,
                    [4] = 0.15,
                }, -- end of color
                lat = 0.73395070559377,
                hidden = true,
                long = 0.72834658788064,
                x = -305417.0992851,
                name = "Ground Unit Contact 1",
                y = 623087.15087961,
            }, -- end of [2]
            [3] = 
            {
                radius = 101,
                zoneId = 1,
                color = 
                {
                    [1] = 1,
                    [2] = 1,
                    [3] = 1,
                    [4] = 0.15,
                }, -- end of color
                lat = 0.73613963663583,
                hidden = true,
                long = 0.72720195983177,
                x = -292022.85158838,
                name = "To Activate ZU-23",
                y = 616226.87365891,
            }, -- end of [3]
        }, -- end of zones
    }, -- end of triggers
    map = 
    {
        centerY = 0.7299249427765,
        zoom = 100000,
        centerX = 0.73366561534799,
    }, -- end of map
    coalitions = 
    {
        blue = 
        {
            [1] = 11,
            [2] = 8,
            [3] = 13,
            [4] = 5,
            [5] = 16,
            [6] = 6,
            [7] = 17,
            [8] = 15,
            [9] = 12,
            [10] = 9,
            [11] = 10,
            [12] = 3,
            [13] = 4,
            [14] = 2,
            [15] = 1,
        }, -- end of blue
        red = 
        {
            [1] = 0,
        }, -- end of red
    }, -- end of coalitions
    descriptionText = "1- Take off\
2- Follow the route to Poti and reach waypoint 5 (Attack Point)\
3- Locate and destroy all enemy ground transport units\
4- Return to base\
\
Russian forces in Poti have moved large quantities of weapons and ammunitions inside the city within the last days.\
This morning our ground units have spotted suspect movements of vehicles and men from periphery to central Poti.\
\
Many transport vehicles are ready to move from periphery of Poti to downtown. Our ground unit \"Snooki\" is monitoring enemy men and vehicles, wait for further informations on the route to Poti.\
Be ready for light AA in the city and watch out for any escort tanks to the convoys.\
\
Use GAU-8 Cannon for transport vehicles and keep Bombs and Missiles for any more dangerous threats in the city.",
    trigflag = 
    {
        [1] = true,
        [2] = true,
        [3] = true,
        [4] = true,
        [5] = true,
        [6] = true,
    }, -- end of trigflag
    descriptionRedTask = "",
    pictureFileNameB = 
    {
        [1] = "Supply Destroyer Photo1{E89D48D1-A239-469c-8563-343B3CD26AAD}.png",
        [2] = "Supply Destroyer Photo2{A58034DD-6297-4ebe-9FBB-7D452DE844CD}.png",
    }, -- end of pictureFileNameB
    pictureFileNameR = 
    {
    }, -- end of pictureFileNameR
    trigrules = 
    {
        [1] = 
        {
            predicate = "triggerOnce",
            rules = 
            {
                [1] = 
                {
                    group = 3,
                    predicate = "c_group_dead",
                    unit = "",
                }, -- end of [1]
            }, -- end of rules
            actions = 
            {
                [1] = 
                {
                    group = 5,
                    text = "",
                    predicate = "a_activate_group",
                    seconds = 10,
                }, -- end of [1]
            }, -- end of actions
            comment = "Activate T. Unit 2",
        }, -- end of [1]
        [2] = 
        {
            predicate = "triggerOnce",
            rules = 
            {
                [1] = 
                {
                    group = 3,
                    zone = 1,
                    predicate = "c_unit_in_zone",
                    unit = 28,
                }, -- end of [1]
            }, -- end of rules
            actions = 
            {
                [1] = 
                {
                    group = 6,
                    text = "",
                    predicate = "a_activate_group",
                    seconds = 10,
                }, -- end of [1]
            }, -- end of actions
            comment = "Activate ZU-23 Ural",
        }, -- end of [2]
        [3] = 
        {
            predicate = "triggerOnce",
            rules = 
            {
                [1] = 
                {
                    zone = 2,
                    predicate = "c_unit_in_zone",
                    unit = 1,
                }, -- end of [1]
            }, -- end of rules
            actions = 
            {
                [1] = 
                {
                    altitude = 1,
                    seconds = 15,
                    zone = "",
                    color = "0",
                    text = "Enfield, Snooki here, Enemy Transport Group sighted in South-East Poti, moving North-West through the center of the city. Acquire moving targets and watch out for the T-80U escort tank behind the convoy!",
                    predicate = "a_out_text_delay",
                }, -- end of [1]
                [2] = 
                {
                    text = "",
                    file = "Ground Unit Contact 1.wav",
                    predicate = "a_out_sound",
                    seconds = 10,
                }, -- end of [2]
            }, -- end of actions
            comment = "Ground Unit Contact 1",
        }, -- end of [3]
        [4] = 
        {
            predicate = "triggerOnce",
            rules = 
            {
                [1] = 
                {
                    group = 3,
                    predicate = "c_group_dead",
                    unit = "",
                }, -- end of [1]
            }, -- end of rules
            actions = 
            {
                [1] = 
                {
                    text = "Enfield, this is Snooki, we have a second enemy transport unit in nord Poti directing South, proceed with the attack! Out.",
                    predicate = "a_out_text_delay",
                    seconds = 15,
                }, -- end of [1]
                [2] = 
                {
                    text = "",
                    file = "Ground Unit Contact 2.wav",
                    predicate = "a_out_sound",
                    seconds = 10,
                }, -- end of [2]
            }, -- end of actions
            comment = "Ground Unit Contact 2",
        }, -- end of [4]
        [5] = 
        {
            predicate = "triggerOnce",
            rules = 
            {
                [1] = 
                {
                    group = 5,
                    predicate = "c_group_dead",
                    unit = "",
                }, -- end of [1]
            }, -- end of rules
            actions = 
            {
                [1] = 
                {
                    text = "Enfield, this is Snooki, no more enemy transport units moving inside the city, great job Enfield! Return to base, Out.",
                    predicate = "a_out_text_delay",
                    seconds = 12,
                }, -- end of [1]
                [2] = 
                {
                    text = "",
                    file = "End Mission.wav",
                    predicate = "a_out_sound",
                    seconds = 10,
                }, -- end of [2]
            }, -- end of actions
            comment = "End Mission Message",
        }, -- end of [5]
        [6] = 
        {
            predicate = "triggerOnce",
            rules = 
            {
                [1] = 
                {
                    unit = 1,
                    predicate = "c_unit_in_zone",
                    zone = 3,
                }, -- end of [1]
            }, -- end of rules
            actions = 
            {
                [1] = 
                {
                    group = 14,
                    text = "",
                    predicate = "a_activate_group",
                    seconds = 10,
                }, -- end of [1]
                [2] = 
                {
                    group = 18,
                    text = "",
                    predicate = "a_activate_group",
                    seconds = 10,
                }, -- end of [2]
                [3] = 
                {
                    group = 16,
                    text = "",
                    predicate = "a_activate_group",
                    seconds = 10,
                }, -- end of [3]
                [4] = 
                {
                    group = 17,
                    text = "",
                    predicate = "a_activate_group",
                    seconds = 10,
                }, -- end of [4]
            }, -- end of actions
            comment = "Activate Ground Battle",
        }, -- end of [6]
    }, -- end of trigrules
    coalition = 
    {
        blue = 
        {
            country = 
            {
                [1] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Belgium",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 11,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [1]
                [2] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Canada",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 8,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [2]
                [3] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Denmark",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 13,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [3]
                [4] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "France",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 5,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [4]
                [5] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Georgia",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 16,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [5]
                [6] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Germany",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 6,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [6]
                [7] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Insurgents",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 17,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [7]
                [8] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Israel",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 15,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [8]
                [9] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Norway",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 12,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [9]
                [10] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Spain",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 9,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [10]
                [11] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "The Netherlands",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 10,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [11]
                [12] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Turkey",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 3,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [12]
                [13] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "UK",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 4,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [13]
                [14] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "USA",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 2,
                    vehicle = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73555923862348,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72747117600197,
                                            x = -295590.7376147,
                                            speed = 5.5555555555556,
                                            y = 617877.3823936,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 16,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Soldier M4",
                                        CLSID = "{39121363-3906-4157-9C96-6EF8B4755E2F}",
                                        unitId = 48,
                                        lat = 0.73555923862348,
                                        skill = "Random",
                                        long = 0.72747117600197,
                                        x = -295590.7376147,
                                        name = "Unit #7",
                                        heading = 4.8710442425711,
                                        y = 617877.3823936,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "Soldier M4",
                                        CLSID = "{39121363-3906-4157-9C96-6EF8B4755E2F}",
                                        unitId = 49,
                                        lat = 0.73556052484325,
                                        skill = "Random",
                                        long = 0.72747356022497,
                                        x = -295581.39221103,
                                        name = "Unit #8",
                                        heading = 4.8710442425711,
                                        y = 617887.86227022,
                                    }, -- end of [2]
                                    [3] = 
                                    {
                                        type = "Soldier M4",
                                        CLSID = "{39121363-3906-4157-9C96-6EF8B4755E2F}",
                                        unitId = 50,
                                        lat = 0.73555642502297,
                                        skill = "Random",
                                        long = 0.7274685969032,
                                        x = -295609.90822152,
                                        name = "Unit #9",
                                        heading = 4.8710442425711,
                                        y = 617866.95359755,
                                    }, -- end of [3]
                                    [4] = 
                                    {
                                        type = "Soldier M4",
                                        CLSID = "{39121363-3906-4157-9C96-6EF8B4755E2F}",
                                        unitId = 51,
                                        lat = 0.73555546036158,
                                        skill = "Random",
                                        long = 0.72746812895637,
                                        x = -295616.28005942,
                                        name = "Unit #10",
                                        heading = 4.8710442425711,
                                        y = 617865.35125894,
                                    }, -- end of [4]
                                    [5] = 
                                    {
                                        type = "Soldier M4",
                                        CLSID = "{39121363-3906-4157-9C96-6EF8B4755E2F}",
                                        unitId = 52,
                                        lat = 0.73555497803121,
                                        skill = "Random",
                                        long = 0.72746773132198,
                                        x = -295619.54496585,
                                        name = "Unit #11",
                                        heading = 4.8710442425711,
                                        y = 617863.77437034,
                                    }, -- end of [5]
                                    [6] = 
                                    {
                                        type = "Soldier M4",
                                        CLSID = "{39121363-3906-4157-9C96-6EF8B4755E2F}",
                                        unitId = 53,
                                        lat = 0.73555988173318,
                                        skill = "Random",
                                        long = 0.72747248160898,
                                        x = -295586.01013642,
                                        name = "Unit #12",
                                        heading = 4.8710442425711,
                                        y = 617883.16027721,
                                    }, -- end of [6]
                                }, -- end of units
                                name = "USA Infantry 1",
                                start_time = 82800,
                                task = "Nothing",
                            }, -- end of [1]
                            [2] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73578386745269,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72736994669523,
                                            x = -294208.45458948,
                                            speed = 5.5555555555556,
                                            y = 617254.22174432,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 17,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Soldier M4",
                                        CLSID = "{39121363-3906-4157-9C96-6EF8B4755E2F}",
                                        unitId = 54,
                                        lat = 0.73578386745269,
                                        skill = "Random",
                                        long = 0.72736994669523,
                                        x = -294208.45458948,
                                        name = "Unit #13",
                                        heading = 2.5748634360663,
                                        y = 617254.22174432,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "Soldier M4",
                                        CLSID = "{39121363-3906-4157-9C96-6EF8B4755E2F}",
                                        unitId = 55,
                                        lat = 0.7357835458326,
                                        skill = "Random",
                                        long = 0.72736834719261,
                                        x = -294211.2756604,
                                        name = "Unit #14",
                                        heading = 2.5748634360663,
                                        y = 617246.84568665,
                                    }, -- end of [2]
                                    [3] = 
                                    {
                                        type = "Soldier M4",
                                        CLSID = "{39121363-3906-4157-9C96-6EF8B4755E2F}",
                                        unitId = 56,
                                        lat = 0.73578507352888,
                                        skill = "Random",
                                        long = 0.72737344963771,
                                        x = -294199.07985107,
                                        name = "Unit #15",
                                        heading = 2.5748634360663,
                                        y = 617270.05526573,
                                    }, -- end of [3]
                                    [4] = 
                                    {
                                        type = "Soldier M4",
                                        CLSID = "{39121363-3906-4157-9C96-6EF8B4755E2F}",
                                        unitId = 57,
                                        lat = 0.73578451069316,
                                        skill = "Random",
                                        long = 0.72737140265233,
                                        x = -294203.65371288,
                                        name = "Unit #16",
                                        heading = 2.5748634360663,
                                        y = 617260.71217273,
                                    }, -- end of [4]
                                }, -- end of units
                                name = "USA Infantry 2",
                                start_time = 82800,
                                task = "Nothing",
                            }, -- end of [2]
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                hidden = false,
                                name = "Enfield1",
                                groupId = 1,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 88,
                                            type = "TakeOff",
                                            action = "From Runway",
                                            lat = 0.731802,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.730691,
                                            x = -317948.32727306,
                                            speed = 138.88888888889,
                                            airdromeId = 24,
                                            y = 635639.37385346,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 250,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73209220096899,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.73217579270492,
                                            x = -315362.01204425,
                                            speed = 138.88888888889,
                                            y = 642513.28216299,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 250,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73370574269104,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.73171132164083,
                                            x = -305311.30190632,
                                            speed = 138.88888888889,
                                            y = 639227.30225025,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 550,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73395094640962,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72834580505489,
                                            x = -305415.94254233,
                                            speed = 138.88888888889,
                                            y = 623083.27219309,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 550,
                                            type = "Turning Point",
                                            action = "Fly Over Point",
                                            lat = 0.73520293300524,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72768795311153,
                                            x = -297756.21656223,
                                            name = "Attack Point",
                                            speed = 138.88888888889,
                                            y = 619133.89701929,
                                        }, -- end of [5]
                                        [6] = 
                                        {
                                            alt = 680,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.7345766021066,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72857237328988,
                                            x = -301320.27016739,
                                            speed = 138.88888888889,
                                            y = 623748.80821785,
                                        }, -- end of [6]
                                        [7] = 
                                        {
                                            alt = 800,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73169142420417,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72924368835708,
                                            x = -319371.65499766,
                                            speed = 138.88888888889,
                                            y = 628832.99544218,
                                        }, -- end of [7]
                                        [8] = 
                                        {
                                            alt = 162,
                                            type = "Land",
                                            action = "Landing",
                                            lat = 0.731802,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.730691,
                                            x = -317948.32727306,
                                            speed = 138.88888888889,
                                            airdromeId = 24,
                                            y = 635639.37385346,
                                        }, -- end of [8]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 0,
                                task = "CAS",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "A-10A",
                                        CLSID = "{8FDB2742-2283-450D-B417-CFC47774E8B6}",
                                        unitId = 1,
                                        lat = 0.731802,
                                        skill = "Player",
                                        y = 635639.37385346,
                                        long = 0.730691,
                                        x = -317948.32727306,
                                        name = "A-10A 1",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{6D21ECEA-F85B-4E8D-9D51-31DC9B8AA4EF}",
                                                }, -- end of [1]
                                                [3] = 
                                                {
                                                    CLSID = "{E6A6262A-CA08-4B3D-B030-E1A993B98452}",
                                                }, -- end of [3]
                                                [4] = 
                                                {
                                                    CLSID = "{BCE4E030-38E9-423E-98ED-24BE3DA87C32}",
                                                }, -- end of [4]
                                                [5] = 
                                                {
                                                    CLSID = "{BCE4E030-38E9-423E-98ED-24BE3DA87C32}",
                                                }, -- end of [5]
                                                [7] = 
                                                {
                                                    CLSID = "{BCE4E030-38E9-423E-98ED-24BE3DA87C32}",
                                                }, -- end of [7]
                                                [8] = 
                                                {
                                                    CLSID = "{BCE4E030-38E9-423E-98ED-24BE3DA87C32}",
                                                }, -- end of [8]
                                                [11] = 
                                                {
                                                    CLSID = "{DB434044-F5D0-4F1F-9BA9-B73027E18DD3}",
                                                }, -- end of [11]
                                                [9] = 
                                                {
                                                    CLSID = "{E6A6262A-CA08-4B3D-B030-E1A993B98453}",
                                                }, -- end of [9]
                                            }, -- end of pylons
                                            fuel = 2669,
                                            flare = 120,
                                            chaff = 240,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 1,
                                            [3] = 1,
                                            name = "Enfield11",
                                        }, -- end of callsign
                                        onboard_num = 7,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "A-10A",
                                        CLSID = "{8FDB2742-2283-450D-B417-CFC47774E8B6}",
                                        unitId = 2,
                                        lat = 0.731795,
                                        skill = "Random",
                                        y = 635677.2300221,
                                        long = 0.730698,
                                        x = -317989.45333289,
                                        name = "A-10A 2",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{6D21ECEA-F85B-4E8D-9D51-31DC9B8AA4EF}",
                                                }, -- end of [1]
                                                [3] = 
                                                {
                                                    CLSID = "{E6A6262A-CA08-4B3D-B030-E1A993B98452}",
                                                }, -- end of [3]
                                                [4] = 
                                                {
                                                    CLSID = "{BCE4E030-38E9-423E-98ED-24BE3DA87C32}",
                                                }, -- end of [4]
                                                [5] = 
                                                {
                                                    CLSID = "{BCE4E030-38E9-423E-98ED-24BE3DA87C32}",
                                                }, -- end of [5]
                                                [7] = 
                                                {
                                                    CLSID = "{BCE4E030-38E9-423E-98ED-24BE3DA87C32}",
                                                }, -- end of [7]
                                                [8] = 
                                                {
                                                    CLSID = "{BCE4E030-38E9-423E-98ED-24BE3DA87C32}",
                                                }, -- end of [8]
                                                [11] = 
                                                {
                                                    CLSID = "{DB434044-F5D0-4F1F-9BA9-B73027E18DD3}",
                                                }, -- end of [11]
                                                [9] = 
                                                {
                                                    CLSID = "{E6A6262A-CA08-4B3D-B030-E1A993B98453}",
                                                }, -- end of [9]
                                            }, -- end of pylons
                                            fuel = 2669,
                                            flare = 120,
                                            chaff = 240,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 1,
                                            [3] = 2,
                                            name = "Enfield12",
                                        }, -- end of callsign
                                        onboard_num = 8,
                                    }, -- end of [2]
                                }, -- end of units
                            }, -- end of [1]
                            [2] = 
                            {
                                hidden = true,
                                taskSelected = true,
                                name = "Uzi1",
                                groupId = 7,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 90,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.732232370689,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.73256831894548,
                                            x = -314273.99758436,
                                            speed = 305.55555555556,
                                            y = 644289.37228436,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 90,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73179364783197,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.73021841238815,
                                            x = -318236.24187614,
                                            speed = 305.55555555556,
                                            y = 633398.71731114,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 200,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73207585299201,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72954778163633,
                                            x = -316771.14378193,
                                            speed = 250,
                                            y = 630026.42399626,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 400,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73188057734439,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72816935754056,
                                            x = -318692.61044107,
                                            speed = 166.66666666667,
                                            y = 623596.68491299,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 400,
                                            type = "Turning Point",
                                            action = "Fly Over Point",
                                            lat = 0.73143494508992,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72828114111322,
                                            x = -321478.18576396,
                                            speed = 166.66666666667,
                                            y = 624421.33408363,
                                        }, -- end of [5]
                                        [6] = 
                                        {
                                            alt = 18,
                                            type = "Land",
                                            action = "Landing",
                                            lat = 0.731802,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.730691,
                                            x = -317948.32727306,
                                            speed = 138.88888888889,
                                            airdromeId = 24,
                                            y = 635639.37385346,
                                        }, -- end of [6]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 0,
                                task = "Fighter Sweep",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "F-16C bl.52d",
                                        CLSID = "{082D2561-FB8B-11d5-9190-00A0249B6F00}",
                                        unitId = 30,
                                        lat = 0.732232370689,
                                        skill = "Random",
                                        long = 0.73256831894548,
                                        x = -314273.99758436,
                                        name = "F-16C 1",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [2]
                                                [4] = 
                                                {
                                                    CLSID = "{AB8B8299-F1CC-4359-89B5-2172E0CF4A5A}",
                                                }, -- end of [4]
                                                [7] = 
                                                {
                                                    CLSID = "{AB8B8299-F1CC-4359-89B5-2172E0CF4A5A}",
                                                }, -- end of [7]
                                                [10] = 
                                                {
                                                    CLSID = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
                                                }, -- end of [10]
                                                [9] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [9]
                                                [6] = 
                                                {
                                                    CLSID = "{8A0BE8AE-58D4-4572-9263-3144C0D06364}",
                                                }, -- end of [6]
                                            }, -- end of pylons
                                            fuel = 931,
                                            flare = 45,
                                            chaff = 90,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        y = 644289.37228436,
                                        callsign = 
                                        {
                                            [1] = 3,
                                            [2] = 1,
                                            [3] = 1,
                                            name = "Uzi11",
                                        }, -- end of callsign
                                        onboard_num = 26,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "F-16C bl.52d",
                                        CLSID = "{082D2561-FB8B-11d5-9190-00A0249B6F00}",
                                        unitId = 31,
                                        lat = 0.732225370689,
                                        skill = "Random",
                                        long = 0.73257531894548,
                                        x = -314315.12857695,
                                        name = "F-16C 2",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [2]
                                                [4] = 
                                                {
                                                    CLSID = "{AB8B8299-F1CC-4359-89B5-2172E0CF4A5A}",
                                                }, -- end of [4]
                                                [7] = 
                                                {
                                                    CLSID = "{AB8B8299-F1CC-4359-89B5-2172E0CF4A5A}",
                                                }, -- end of [7]
                                                [10] = 
                                                {
                                                    CLSID = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
                                                }, -- end of [10]
                                                [9] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [9]
                                                [6] = 
                                                {
                                                    CLSID = "{8A0BE8AE-58D4-4572-9263-3144C0D06364}",
                                                }, -- end of [6]
                                            }, -- end of pylons
                                            fuel = 931,
                                            flare = 45,
                                            chaff = 90,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        y = 644327.45097855,
                                        callsign = 
                                        {
                                            [1] = 3,
                                            [2] = 1,
                                            [3] = 2,
                                            name = "Uzi12",
                                        }, -- end of callsign
                                        onboard_num = 29,
                                    }, -- end of [2]
                                }, -- end of units
                            }, -- end of [2]
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                heading = 6.0562925044203,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73175823701765,
                                            long = 0.73065211287019,
                                            x = -318246.48712546,
                                            name = "",
                                            speed = 0,
                                            y = 635483.22314005,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 8,
                                lat = 0.73175823701765,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "A-10A",
                                        CLSID = "{8FDB2742-2283-450D-B417-CFC47774E8B6}",
                                        unitId = 32,
                                        lat = 0.73175823701765,
                                        long = 0.73065211287019,
                                        x = -318246.48712546,
                                        name = "New Static Object",
                                        category = "Planes",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 635483.22314005,
                                        heading = 6.0562925044203,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.73065211287019,
                                name = "New Static Object",
                                dead = false,
                            }, -- end of [1]
                            [2] = 
                            {
                                heading = 0,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.7317604000894,
                                            long = 0.73066366706297,
                                            x = -318226.96648244,
                                            name = "",
                                            speed = 0,
                                            y = 635536.72102954,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 9,
                                lat = 0.7317604000894,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "A-10A",
                                        CLSID = "{8FDB2742-2283-450D-B417-CFC47774E8B6}",
                                        unitId = 33,
                                        lat = 0.7317604000894,
                                        long = 0.73066366706297,
                                        x = -318226.96648244,
                                        name = "New Static Object #001",
                                        category = "Planes",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 635536.72102954,
                                        heading = 0,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.73066366706297,
                                name = "New Static Object #001",
                                dead = false,
                            }, -- end of [2]
                            [3] = 
                            {
                                heading = 0,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73176256316535,
                                            long = 0.73067556068598,
                                            x = -318207.27724479,
                                            name = "",
                                            speed = 0,
                                            y = 635591.83217064,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 10,
                                lat = 0.73176256316535,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "A-10A",
                                        CLSID = "{8FDB2742-2283-450D-B417-CFC47774E8B6}",
                                        unitId = 34,
                                        lat = 0.73176256316535,
                                        long = 0.73067556068598,
                                        x = -318207.27724479,
                                        name = "New Static Object #002",
                                        category = "Planes",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 635591.83217064,
                                        heading = 0,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.73067556068598,
                                name = "New Static Object #002",
                                dead = false,
                            }, -- end of [3]
                            [4] = 
                            {
                                heading = 0,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73176488647383,
                                            long = 0.73068713240784,
                                            x = -318186.72690465,
                                            name = "",
                                            speed = 0,
                                            y = 635645.30838681,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 11,
                                lat = 0.73176488647383,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "A-10A",
                                        CLSID = "{8FDB2742-2283-450D-B417-CFC47774E8B6}",
                                        unitId = 35,
                                        lat = 0.73176488647383,
                                        long = 0.73068713240784,
                                        x = -318186.72690465,
                                        name = "New Static Object #003",
                                        category = "Planes",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 635645.30838681,
                                        heading = 0,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.73068713240784,
                                name = "New Static Object #003",
                                dead = false,
                            }, -- end of [4]
                            [5] = 
                            {
                                heading = 0,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73176688932985,
                                            long = 0.73069940153714,
                                            x = -318167.87206782,
                                            name = "",
                                            speed = 0,
                                            y = 635702.30922073,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 12,
                                lat = 0.73176688932985,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "A-10A",
                                        CLSID = "{8FDB2742-2283-450D-B417-CFC47774E8B6}",
                                        unitId = 36,
                                        lat = 0.73176688932985,
                                        long = 0.73069940153714,
                                        x = -318167.87206782,
                                        name = "New Static Object #004",
                                        category = "Planes",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 635702.30922073,
                                        heading = 0,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.73069940153714,
                                name = "New Static Object #004",
                                dead = false,
                            }, -- end of [5]
                            [6] = 
                            {
                                heading = 0,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73176897230394,
                                            long = 0.73071121199957,
                                            x = -318148.73452013,
                                            name = "",
                                            speed = 0,
                                            y = 635757.07759591,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 13,
                                lat = 0.73176897230394,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "A-10A",
                                        CLSID = "{8FDB2742-2283-450D-B417-CFC47774E8B6}",
                                        unitId = 37,
                                        lat = 0.73176897230394,
                                        long = 0.73071121199957,
                                        x = -318148.73452013,
                                        name = "New Static Object #005",
                                        category = "Planes",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 635757.07759591,
                                        heading = 0,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.73071121199957,
                                name = "New Static Object #005",
                                dead = false,
                            }, -- end of [6]
                        }, -- end of group
                    }, -- end of static
                }, -- end of [14]
                [15] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Ukraine",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 1,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [15]
            }, -- end of country
        }, -- end of blue
        red = 
        {
            country = 
            {
                [1] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Russia",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 0,
                    vehicle = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                        [6] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72710280019688,
                                                lat = 0.73562676718524,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72710280019688,
                                                lat = 0.73562676718524,
                                            }, -- end of [2]
                                        }, -- end of [6]
                                        [2] = 
                                        {
                                            [7] = 
                                            {
                                                long = 0.72765940858731,
                                                lat = 0.73532663643489,
                                            }, -- end of [7]
                                            [1] = 
                                            {
                                                long = 0.72767894438648,
                                                lat = 0.73521741605445,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72767894438648,
                                                lat = 0.73521741605445,
                                            }, -- end of [2]
                                            [4] = 
                                            {
                                                long = 0.72766948077867,
                                                lat = 0.73525359100894,
                                            }, -- end of [4]
                                            [8] = 
                                            {
                                                long = 0.72763300964609,
                                                lat = 0.73534929079404,
                                            }, -- end of [8]
                                            [9] = 
                                            {
                                                long = 0.72760109598117,
                                                lat = 0.73537095308881,
                                            }, -- end of [9]
                                            [5] = 
                                            {
                                                long = 0.72767361613462,
                                                lat = 0.73529431828317,
                                            }, -- end of [5]
                                            [10] = 
                                            {
                                                long = 0.72748022802215,
                                                lat = 0.73543345841083,
                                            }, -- end of [10]
                                            [3] = 
                                            {
                                                long = 0.72767354154855,
                                                lat = 0.73522950274673,
                                            }, -- end of [3]
                                            [6] = 
                                            {
                                                long = 0.72766952058903,
                                                lat = 0.73531126789715,
                                            }, -- end of [6]
                                            [11] = 
                                            {
                                                long = 0.72738237502959,
                                                lat = 0.73548987128182,
                                            }, -- end of [11]
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72738237502959,
                                                lat = 0.73548987128182,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72738155989922,
                                                lat = 0.73549034116372,
                                            }, -- end of [2]
                                            [3] = 
                                            {
                                                long = 0.72740367698399,
                                                lat = 0.73551324160169,
                                            }, -- end of [3]
                                        }, -- end of [3]
                                        [1] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72767460272748,
                                                lat = 0.73521072822244,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72767894438648,
                                                lat = 0.73521741605445,
                                            }, -- end of [2]
                                        }, -- end of [1]
                                        [4] = 
                                        {
                                            [2] = 
                                            {
                                                long = 0.72740393893575,
                                                lat = 0.73551351282394,
                                            }, -- end of [2]
                                            [3] = 
                                            {
                                                long = 0.72722264265257,
                                                lat = 0.73559536089583,
                                            }, -- end of [3]
                                            [1] = 
                                            {
                                                long = 0.72740367698399,
                                                lat = 0.73551324160169,
                                            }, -- end of [1]
                                            [4] = 
                                            {
                                                long = 0.72722264265257,
                                                lat = 0.73559536089583,
                                            }, -- end of [4]
                                            [5] = 
                                            {
                                                long = 0.72715517361695,
                                                lat = 0.73562321001479,
                                            }, -- end of [5]
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72715517361695,
                                                lat = 0.73562321001479,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72708851649245,
                                                lat = 0.73561101015168,
                                            }, -- end of [2]
                                        }, -- end of [5]
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 18,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73521072822244,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72767460272748,
                                            x = -297712.98913839,
                                            speed = 12.5,
                                            y = 619065.32524588,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "On Road",
                                            lat = 0.73521741605445,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72767894438648,
                                            x = -297668.28312181,
                                            speed = 12.5,
                                            y = 619081.56327125,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "On Road",
                                            lat = 0.73548987128182,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72738237502959,
                                            x = -296075.54529504,
                                            speed = 12.5,
                                            y = 617500.75338719,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "On Road",
                                            lat = 0.73551324160169,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72740367698399,
                                            x = -295916.36864119,
                                            speed = 12.5,
                                            y = 617586.80564893,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 18,
                                            type = "Turning Point",
                                            action = "On Road",
                                            lat = 0.73562321001479,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72715517361695,
                                            x = -295335.68309271,
                                            speed = 12.5,
                                            y = 616338.77103694,
                                        }, -- end of [5]
                                        [6] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73561101015168,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72708851649245,
                                            x = -295445.58154451,
                                            speed = 13.888888888889,
                                            y = 616030.61585667,
                                        }, -- end of [6]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 2,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "T-80UD",
                                        CLSID = "{E2D06D03-13F6-4E5F-8A28-549D4CF30D9F}",
                                        unitId = 3,
                                        lat = 0.73521072822244,
                                        skill = "Random",
                                        long = 0.72767460272748,
                                        x = -297712.98913839,
                                        name = "T-80U 1",
                                        heading = 0.44873227439685,
                                        y = 619065.32524588,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "T-80U GUARD",
                                start_time = 235,
                                task = "Nothing",
                            }, -- end of [1]
                            [2] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                        [6] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72713629879983,
                                                lat = 0.73563100027035,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72713664780867,
                                                lat = 0.7356312692361,
                                            }, -- end of [2]
                                        }, -- end of [6]
                                        [2] = 
                                        {
                                            [7] = 
                                            {
                                                long = 0.72765940858731,
                                                lat = 0.73532663643489,
                                            }, -- end of [7]
                                            [1] = 
                                            {
                                                long = 0.72767806971568,
                                                lat = 0.73521937280076,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72767806971568,
                                                lat = 0.73521937280076,
                                            }, -- end of [2]
                                            [4] = 
                                            {
                                                long = 0.72766948077867,
                                                lat = 0.73525359100894,
                                            }, -- end of [4]
                                            [8] = 
                                            {
                                                long = 0.72763300964609,
                                                lat = 0.73534929079404,
                                            }, -- end of [8]
                                            [9] = 
                                            {
                                                long = 0.72760109598117,
                                                lat = 0.73537095308881,
                                            }, -- end of [9]
                                            [5] = 
                                            {
                                                long = 0.72767361613462,
                                                lat = 0.73529431828317,
                                            }, -- end of [5]
                                            [10] = 
                                            {
                                                long = 0.72748022802215,
                                                lat = 0.73543345841083,
                                            }, -- end of [10]
                                            [3] = 
                                            {
                                                long = 0.72767354154855,
                                                lat = 0.73522950274673,
                                            }, -- end of [3]
                                            [6] = 
                                            {
                                                long = 0.72766952058903,
                                                lat = 0.73531126789715,
                                            }, -- end of [6]
                                            [11] = 
                                            {
                                                long = 0.72738289661664,
                                                lat = 0.73548957061256,
                                            }, -- end of [11]
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72738289661664,
                                                lat = 0.73548957061256,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72738155989922,
                                                lat = 0.73549034116372,
                                            }, -- end of [2]
                                            [3] = 
                                            {
                                                long = 0.72740343750866,
                                                lat = 0.73551299365115,
                                            }, -- end of [3]
                                        }, -- end of [3]
                                        [1] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72768516273891,
                                                lat = 0.73521972895395,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72767806971568,
                                                lat = 0.73521937280076,
                                            }, -- end of [2]
                                        }, -- end of [1]
                                        [4] = 
                                        {
                                            [2] = 
                                            {
                                                long = 0.72740393893575,
                                                lat = 0.73551351282394,
                                            }, -- end of [2]
                                            [3] = 
                                            {
                                                long = 0.72722264265257,
                                                lat = 0.73559536089583,
                                            }, -- end of [3]
                                            [1] = 
                                            {
                                                long = 0.72740343750866,
                                                lat = 0.73551299365115,
                                            }, -- end of [1]
                                            [4] = 
                                            {
                                                long = 0.72722264265257,
                                                lat = 0.73559536089583,
                                            }, -- end of [4]
                                            [5] = 
                                            {
                                                long = 0.7271552802217,
                                                lat = 0.73562316601466,
                                            }, -- end of [5]
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.7271552802217,
                                                lat = 0.73562316601466,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72708145135894,
                                                lat = 0.73560682975192,
                                            }, -- end of [2]
                                        }, -- end of [5]
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73521972895395,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72768516273891,
                                            x = -297650.54680706,
                                            speed = 12.5,
                                            y = 619109.59592409,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "On Road",
                                            lat = 0.73521937280076,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72767806971568,
                                            x = -297656.23759232,
                                            speed = 12.5,
                                            y = 619076.12022848,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "On Road",
                                            lat = 0.73548957061256,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72738289661664,
                                            x = -296077.20915985,
                                            speed = 12.5,
                                            y = 617503.41748423,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "On Road",
                                            lat = 0.73551299365115,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72740343750866,
                                            x = -295918.06394811,
                                            speed = 12.5,
                                            y = 617585.82882381,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "On Road",
                                            lat = 0.73562316601466,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.7271552802217,
                                            x = -295335.9119716,
                                            speed = 12.5,
                                            y = 616339.30440157,
                                        }, -- end of [5]
                                        [6] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73560682975192,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72708145135894,
                                            x = -295475.62535893,
                                            speed = 8.3333333333333,
                                            y = 615999.79645678,
                                        }, -- end of [6]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 3,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "KAMAZ Truck",
                                        CLSID = "{254D09EB-5591-4D42-B513-3A15B9965B63}",
                                        unitId = 7,
                                        lat = 0.73521972895395,
                                        skill = "Random",
                                        long = 0.72768516273891,
                                        x = -297650.54680706,
                                        name = "KAMAZ 1",
                                        heading = 4.6447947898973,
                                        y = 619109.59592409,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "KAMAZ Truck",
                                        CLSID = "{254D09EB-5591-4D42-B513-3A15B9965B63}",
                                        unitId = 8,
                                        lat = 0.73521876458636,
                                        skill = "Random",
                                        long = 0.72768598597208,
                                        x = -297656.29418488,
                                        name = "KAMAZ 2",
                                        heading = 4.6447947898973,
                                        y = 619114.1422297,
                                    }, -- end of [2]
                                    [3] = 
                                    {
                                        type = "KAMAZ Truck",
                                        CLSID = "{254D09EB-5591-4D42-B513-3A15B9965B63}",
                                        unitId = 9,
                                        lat = 0.73521771985574,
                                        skill = "Random",
                                        long = 0.72768723960434,
                                        x = -297662.34598084,
                                        name = "KAMAZ 3",
                                        heading = 4.6447947898973,
                                        y = 619120.78684063,
                                    }, -- end of [3]
                                    [4] = 
                                    {
                                        type = "KAMAZ Truck",
                                        CLSID = "{254D09EB-5591-4D42-B513-3A15B9965B63}",
                                        unitId = 21,
                                        lat = 0.73521667512612,
                                        skill = "Random",
                                        long = 0.72768831976298,
                                        x = -297668.48145099,
                                        name = "KAMAZ 4",
                                        heading = 4.6447947898973,
                                        y = 619126.60701269,
                                    }, -- end of [4]
                                }, -- end of units
                                name = "KAMAZ Transport Unit 1",
                                start_time = 240,
                                task = "Nothing",
                            }, -- end of [2]
                            [3] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 18,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73565160908743,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72746303311175,
                                            x = -295006.16306475,
                                            speed = 5.5555555555556,
                                            y = 617779.83734769,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 4,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "ZU-23 Emplacement",
                                        CLSID = "{B76231A9-4B8A-41e0-8EAD-65785077FC0C}",
                                        unitId = 22,
                                        lat = 0.73565160908743,
                                        skill = "Random",
                                        long = 0.72746303311175,
                                        x = -295006.16306475,
                                        name = "ZU-23",
                                        heading = 4.416948143241,
                                        y = 617779.83734769,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "ZU-23",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [3]
                            [4] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                        [6] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72714040281289,
                                                lat = 0.73574141440977,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72710537037278,
                                                lat = 0.73574591692788,
                                            }, -- end of [2]
                                        }, -- end of [6]
                                        [2] = 
                                        {
                                            [7] = 
                                            {
                                                long = 0.72728793192801,
                                                lat = 0.73583468865513,
                                            }, -- end of [7]
                                            [1] = 
                                            {
                                                long = 0.72719519601367,
                                                lat = 0.73615547525547,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72719519601367,
                                                lat = 0.73615547525547,
                                            }, -- end of [2]
                                            [4] = 
                                            {
                                                long = 0.72725870024183,
                                                lat = 0.73596263507565,
                                            }, -- end of [4]
                                            [8] = 
                                            {
                                                long = 0.72729155669466,
                                                lat = 0.73579203499505,
                                            }, -- end of [8]
                                            [9] = 
                                            {
                                                long = 0.72728885479542,
                                                lat = 0.73574939232429,
                                            }, -- end of [9]
                                            [5] = 
                                            {
                                                long = 0.72726199337492,
                                                lat = 0.73594822206943,
                                            }, -- end of [5]
                                            [10] = 
                                            {
                                                long = 0.72728201012125,
                                                lat = 0.73571680954408,
                                            }, -- end of [10]
                                            [3] = 
                                            {
                                                long = 0.72725870024183,
                                                lat = 0.73596263507565,
                                            }, -- end of [3]
                                            [6] = 
                                            {
                                                long = 0.72726199337492,
                                                lat = 0.73594822206943,
                                            }, -- end of [6]
                                        }, -- end of [2]
                                        [8] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72709660823887,
                                                lat = 0.73574945463356,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72709660823887,
                                                lat = 0.73574945463356,
                                            }, -- end of [2]
                                        }, -- end of [8]
                                        [3] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72728201012125,
                                                lat = 0.73571680954408,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72721993463546,
                                                lat = 0.73573216822476,
                                            }, -- end of [2]
                                        }, -- end of [3]
                                        [1] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72720099855782,
                                                lat = 0.73616062931296,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72719519601367,
                                                lat = 0.73615547525547,
                                            }, -- end of [2]
                                        }, -- end of [1]
                                        [4] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72721993463546,
                                                lat = 0.73573216822476,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72719208017361,
                                                lat = 0.73574254003757,
                                            }, -- end of [2]
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72719208017361,
                                                lat = 0.73574254003757,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72714040281289,
                                                lat = 0.73574141440977,
                                            }, -- end of [2]
                                        }, -- end of [5]
                                        [7] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72710537037278,
                                                lat = 0.73574591692788,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72709660823887,
                                                lat = 0.73574945463356,
                                            }, -- end of [2]
                                        }, -- end of [7]
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73616062931296,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72720099855782,
                                            x = -291889.56541403,
                                            speed = 6.9444444444444,
                                            y = 616208.47534762,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "On Road",
                                            lat = 0.73615547525547,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72719519601367,
                                            x = -291925.20388077,
                                            speed = 13.888888888889,
                                            y = 616184.37095446,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "On Road",
                                            lat = 0.73571680954408,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72728201012125,
                                            x = -294678.13136694,
                                            speed = 13.888888888889,
                                            y = 616880.2159618,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73573216822476,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72721993463546,
                                            x = -294610.23934269,
                                            speed = 9.7222222222222,
                                            y = 616576.18935267,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 18,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73574254003757,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72719208017361,
                                            x = -294557.60284342,
                                            speed = 9.7222222222222,
                                            y = 616437.54584494,
                                        }, -- end of [5]
                                        [6] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73574141440977,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72714040281289,
                                            x = -294589.71599989,
                                            speed = 9.7222222222222,
                                            y = 616193.32422922,
                                        }, -- end of [6]
                                        [7] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73574591692788,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72710537037278,
                                            x = -294577.93795532,
                                            speed = 9.7222222222222,
                                            y = 616024.40428812,
                                        }, -- end of [7]
                                        [8] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73574945463356,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72709660823887,
                                            x = -294559.62772479,
                                            speed = 5.5555555555556,
                                            y = 615980.61587991,
                                        }, -- end of [8]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 5,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "KAMAZ Truck",
                                        CLSID = "{254D09EB-5591-4D42-B513-3A15B9965B63}",
                                        unitId = 23,
                                        lat = 0.73616062931296,
                                        skill = "Random",
                                        long = 0.72720099855782,
                                        x = -291889.56541403,
                                        name = "KAMAZ 5",
                                        heading = 3.8368992706228,
                                        y = 616208.47534762,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "KAMAZ Truck",
                                        CLSID = "{254D09EB-5591-4D42-B513-3A15B9965B63}",
                                        unitId = 24,
                                        lat = 0.73615861850284,
                                        skill = "Random",
                                        long = 0.72720350232185,
                                        x = -291901.16841882,
                                        name = "KAMAZ 6",
                                        heading = 3.8368992706228,
                                        y = 616221.66855034,
                                    }, -- end of [2]
                                    [3] = 
                                    {
                                        type = "KAMAZ Truck",
                                        CLSID = "{254D09EB-5591-4D42-B513-3A15B9965B63}",
                                        unitId = 25,
                                        lat = 0.73615741201853,
                                        skill = "Random",
                                        long = 0.72720330470963,
                                        x = -291908.95063831,
                                        name = "KAMAZ 7",
                                        heading = 3.8368992706228,
                                        y = 616221.52743645,
                                    }, -- end of [3]
                                    [4] = 
                                    {
                                        type = "KAMAZ Truck",
                                        CLSID = "{254D09EB-5591-4D42-B513-3A15B9965B63}",
                                        unitId = 26,
                                        lat = 0.7361601467182,
                                        skill = "Random",
                                        long = 0.7272030756478,
                                        x = -291891.63766861,
                                        name = "KAMAZ 8",
                                        heading = 3.8368992706228,
                                        y = 616218.63853494,
                                    }, -- end of [4]
                                    [5] = 
                                    {
                                        type = "KAMAZ Truck",
                                        CLSID = "{254D09EB-5591-4D42-B513-3A15B9965B63}",
                                        unitId = 27,
                                        lat = 0.7361591815293,
                                        skill = "Random",
                                        long = 0.72720138857602,
                                        x = -291898.60140337,
                                        name = "KAMAZ 9",
                                        heading = 3.8368992706228,
                                        y = 616211.27858713,
                                    }, -- end of [5]
                                    [6] = 
                                    {
                                        type = "KAMAZ Truck",
                                        CLSID = "{254D09EB-5591-4D42-B513-3A15B9965B63}",
                                        unitId = 28,
                                        lat = 0.73615789461209,
                                        skill = "Random",
                                        long = 0.72720125766785,
                                        x = -291906.86388887,
                                        name = "KAMAZ 10",
                                        heading = 3.8368992706228,
                                        y = 616211.50667216,
                                    }, -- end of [6]
                                }, -- end of units
                                name = "KAMAZ Transport Unit 2",
                                start_time = 82800,
                                task = "Nothing",
                            }, -- end of [4]
                            [5] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                        [7] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72714175786047,
                                                lat = 0.73574044958685,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72710624445532,
                                                lat = 0.73574422848144,
                                            }, -- end of [2]
                                        }, -- end of [7]
                                        [1] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72719160991538,
                                                lat = 0.73615290782208,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.7271957865423,
                                                lat = 0.73615368235865,
                                            }, -- end of [2]
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            [7] = 
                                            {
                                                long = 0.72728793192801,
                                                lat = 0.73583468865513,
                                            }, -- end of [7]
                                            [1] = 
                                            {
                                                long = 0.7271957865423,
                                                lat = 0.73615368235865,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.7271957865423,
                                                lat = 0.73615368235865,
                                            }, -- end of [2]
                                            [4] = 
                                            {
                                                long = 0.72725870024183,
                                                lat = 0.73596263507565,
                                            }, -- end of [4]
                                            [8] = 
                                            {
                                                long = 0.72729155669466,
                                                lat = 0.73579203499505,
                                            }, -- end of [8]
                                            [9] = 
                                            {
                                                long = 0.72728885479542,
                                                lat = 0.73574939232429,
                                            }, -- end of [9]
                                            [5] = 
                                            {
                                                long = 0.72726199337492,
                                                lat = 0.73594822206943,
                                            }, -- end of [5]
                                            [10] = 
                                            {
                                                long = 0.72728201350362,
                                                lat = 0.73571682564569,
                                            }, -- end of [10]
                                            [3] = 
                                            {
                                                long = 0.72725870024183,
                                                lat = 0.73596263507565,
                                            }, -- end of [3]
                                            [6] = 
                                            {
                                                long = 0.72726199337492,
                                                lat = 0.73594822206943,
                                            }, -- end of [6]
                                        }, -- end of [2]
                                        [4] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72723274242528,
                                                lat = 0.73572846977242,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72720621508119,
                                                lat = 0.73573530387883,
                                            }, -- end of [2]
                                        }, -- end of [4]
                                        [8] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72710624445532,
                                                lat = 0.73574422848144,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72708952800482,
                                                lat = 0.73575130389331,
                                            }, -- end of [2]
                                        }, -- end of [8]
                                        [9] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72709111719126,
                                                lat = 0.73575146469865,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72709111719126,
                                                lat = 0.73575146469865,
                                            }, -- end of [2]
                                        }, -- end of [9]
                                        [5] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72720621508119,
                                                lat = 0.73573530387883,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72719021964214,
                                                lat = 0.73574052998872,
                                            }, -- end of [2]
                                        }, -- end of [5]
                                        [3] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72728201350362,
                                                lat = 0.73571682564569,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72723274242528,
                                                lat = 0.73572846977242,
                                            }, -- end of [2]
                                        }, -- end of [3]
                                        [6] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72719021964214,
                                                lat = 0.73574052998872,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.72714175786047,
                                                lat = 0.73574044958685,
                                            }, -- end of [2]
                                        }, -- end of [6]
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73615290782208,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72719160991538,
                                            x = -291943.29250494,
                                            speed = 11.111111111111,
                                            y = 616169.06649668,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "On Road",
                                            lat = 0.73615368235865,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.7271957865423,
                                            x = -291936.34190644,
                                            speed = 13.888888888889,
                                            y = 616188.35213125,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "On Road",
                                            lat = 0.73571682564569,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72728201350362,
                                            x = -294678.02714895,
                                            speed = 13.888888888889,
                                            y = 616880.22171773,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73572846977242,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72723274242528,
                                            x = -294627.62111103,
                                            speed = 8.6111111111111,
                                            y = 616639.2559171,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73573530387883,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72720621508119,
                                            x = -294596.88329301,
                                            speed = 8.6111111111111,
                                            y = 616509.16038316,
                                        }, -- end of [5]
                                        [6] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73574052998872,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72719021964214,
                                            x = -294571.3071043,
                                            speed = 8.6111111111111,
                                            y = 616430.01009437,
                                        }, -- end of [6]
                                        [7] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73574044958685,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72714175786047,
                                            x = -294595.20901446,
                                            speed = 8.6111111111111,
                                            y = 616200.36260918,
                                        }, -- end of [7]
                                        [8] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73574422848144,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72710624445532,
                                            x = -294588.27340625,
                                            speed = 6.9444444444444,
                                            y = 616029.62479913,
                                        }, -- end of [8]
                                        [9] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73575130389331,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72708952800482,
                                            x = -294551.26305591,
                                            speed = 6.1111111111111,
                                            y = 615945.87686898,
                                        }, -- end of [9]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 6,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Ural-375 ZU-23",
                                        CLSID = "{96E2A468-E0D6-4e7f-A618-7C29E4DAD176}",
                                        unitId = 29,
                                        lat = 0.73615290782208,
                                        skill = "Random",
                                        long = 0.72719160991538,
                                        x = -291943.29250494,
                                        name = "Unit #1",
                                        heading = 1.3255860689329,
                                        y = 616169.06649668,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "ZU-23 Ural",
                                start_time = 82800,
                                task = "Nothing",
                            }, -- end of [5]
                            [6] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                        [1] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.72742758005853,
                                                lat = 0.73557033231818,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.7274558524993,
                                                lat = 0.73554267867775,
                                            }, -- end of [2]
                                        }, -- end of [1]
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73557033231818,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72742758005853,
                                            x = -295541.09939856,
                                            speed = 5.5555555555556,
                                            y = 617663.66683305,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 14,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Paratrooper AKS-74",
                                        CLSID = "{4EF38747-79E3-4b61-8D80-FA4BE43382E2}",
                                        unitId = 38,
                                        lat = 0.73557033231818,
                                        skill = "Random",
                                        long = 0.72742758005853,
                                        x = -295541.09939856,
                                        name = "Unit #2",
                                        heading = 2.2655346029916,
                                        y = 617663.66683305,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "Paratrooper AKS-74",
                                        CLSID = "{4EF38747-79E3-4b61-8D80-FA4BE43382E2}",
                                        unitId = 43,
                                        lat = 0.7355701715392,
                                        skill = "Random",
                                        long = 0.72742653515212,
                                        x = -295542.62805808,
                                        name = "Unit #3",
                                        heading = 2.2655346029916,
                                        y = 617658.81680005,
                                    }, -- end of [2]
                                    [3] = 
                                    {
                                        type = "Paratrooper AKS-74",
                                        CLSID = "{4EF38747-79E3-4b61-8D80-FA4BE43382E2}",
                                        unitId = 44,
                                        lat = 0.73556864414006,
                                        skill = "Random",
                                        long = 0.72742559272498,
                                        x = -295552.81417766,
                                        name = "Unit #4",
                                        heading = 2.2655346029916,
                                        y = 617655.32465388,
                                    }, -- end of [3]
                                    [4] = 
                                    {
                                        type = "Paratrooper AKS-74",
                                        CLSID = "{4EF38747-79E3-4b61-8D80-FA4BE43382E2}",
                                        unitId = 45,
                                        lat = 0.73557089504479,
                                        skill = "Random",
                                        long = 0.72742934622889,
                                        x = -295536.66176484,
                                        name = "Unit #5",
                                        heading = 2.2655346029916,
                                        y = 617671.67899072,
                                    }, -- end of [4]
                                    [5] = 
                                    {
                                        type = "Paratrooper AKS-74",
                                        CLSID = "{4EF38747-79E3-4b61-8D80-FA4BE43382E2}",
                                        unitId = 46,
                                        lat = 0.7355696892024,
                                        skill = "Random",
                                        long = 0.72742590395279,
                                        x = -295546.00573357,
                                        name = "Unit #6",
                                        heading = 2.2655346029916,
                                        y = 617656.13286616,
                                    }, -- end of [5]
                                }, -- end of units
                                name = "Russian Infantry 1",
                                start_time = 82800,
                                task = "Nothing",
                            }, -- end of [6]
                            [7] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73576440960547,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72740722242207,
                                            x = -294314.4323437,
                                            speed = 5.5555555555556,
                                            y = 617443.31866449,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 18,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Paratrooper AKS-74",
                                        CLSID = "{4EF38747-79E3-4b61-8D80-FA4BE43382E2}",
                                        unitId = 58,
                                        lat = 0.73576440960547,
                                        skill = "Random",
                                        long = 0.72740722242207,
                                        x = -294314.4323437,
                                        name = "Unit #17",
                                        heading = 5.0928953574971,
                                        y = 617443.31866449,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "Paratrooper AKS-74",
                                        CLSID = "{4EF38747-79E3-4b61-8D80-FA4BE43382E2}",
                                        unitId = 59,
                                        lat = 0.73576465081636,
                                        skill = "Random",
                                        long = 0.72740791377853,
                                        x = -294312.56187948,
                                        name = "Unit #18",
                                        heading = 5.0928953574971,
                                        y = 617446.44161361,
                                    }, -- end of [2]
                                    [3] = 
                                    {
                                        type = "Paratrooper AKS-74",
                                        CLSID = "{4EF38747-79E3-4b61-8D80-FA4BE43382E2}",
                                        unitId = 60,
                                        lat = 0.73576537444933,
                                        skill = "Random",
                                        long = 0.72740956014346,
                                        x = -294307.15691276,
                                        name = "Unit #19",
                                        heading = 5.0928953574971,
                                        y = 617453.78323037,
                                    }, -- end of [3]
                                    [4] = 
                                    {
                                        type = "Paratrooper AKS-74",
                                        CLSID = "{4EF38747-79E3-4b61-8D80-FA4BE43382E2}",
                                        unitId = 61,
                                        lat = 0.73576593727529,
                                        skill = "Random",
                                        long = 0.72741015483119,
                                        x = -294303.28405202,
                                        name = "Unit #20",
                                        heading = 5.0928953574971,
                                        y = 617456.24273987,
                                    }, -- end of [4]
                                    [5] = 
                                    {
                                        type = "Paratrooper AKS-74",
                                        CLSID = "{4EF38747-79E3-4b61-8D80-FA4BE43382E2}",
                                        unitId = 62,
                                        lat = 0.73576376637671,
                                        skill = "Random",
                                        long = 0.7274064541666,
                                        x = -294318.90123246,
                                        name = "Unit #21",
                                        heading = 5.0928953574971,
                                        y = 617440.08779174,
                                    }, -- end of [5]
                                }, -- end of units
                                name = "Russian Infantry 2",
                                start_time = 82800,
                                task = "Nothing",
                            }, -- end of [7]
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [1]
            }, -- end of country
        }, -- end of red
    }, -- end of coalition
    sortie = "Supply Destroyer",
    version = 2,
    trigfuncStartup = 
    {
    }, -- end of trigfuncStartup
    currentKey = 11580,
    start_time = 25500,
    forcedOptions = 
    {
    }, -- end of forcedOptions
    failures = 
    {
        hydro = 
        {
            hh = 0,
            prob = 100,
            label = "HYDRO",
            enable = false,
            mmint = 1,
            id = "hydro",
            mm = 0,
        }, -- end of hydro
        ecm = 
        {
            hh = 0,
            prob = 100,
            label = "ECM",
            enable = false,
            mmint = 1,
            id = "ecm",
            mm = 0,
        }, -- end of ecm
        l_engine = 
        {
            hh = 0,
            prob = 100,
            label = "L-ENGINE",
            enable = false,
            mmint = 1,
            id = "l_engine",
            mm = 0,
        }, -- end of l_engine
        autopilot = 
        {
            hh = 0,
            prob = 100,
            label = "AUTOPILOT",
            enable = false,
            mmint = 1,
            id = "autopilot",
            mm = 0,
        }, -- end of autopilot
        hud = 
        {
            hh = 0,
            prob = 100,
            label = "HUD",
            enable = false,
            mmint = 1,
            id = "hud",
            mm = 0,
        }, -- end of hud
        asc = 
        {
            hh = 0,
            prob = 100,
            label = "ASC",
            enable = false,
            mmint = 1,
            id = "asc",
            mm = 0,
        }, -- end of asc
        rws = 
        {
            hh = 0,
            prob = 100,
            label = "RWS",
            enable = false,
            mmint = 1,
            id = "rws",
            mm = 0,
        }, -- end of rws
        r_engine = 
        {
            hh = 0,
            prob = 100,
            label = "R-ENGINE",
            enable = false,
            mmint = 1,
            id = "r_engine",
            mm = 0,
        }, -- end of r_engine
        mlws = 
        {
            hh = 0,
            prob = 100,
            label = "MLWS",
            enable = false,
            mmint = 1,
            id = "mlws",
            mm = 0,
        }, -- end of mlws
        mfd = 
        {
            hh = 0,
            prob = 100,
            label = "MFD",
            enable = false,
            mmint = 1,
            id = "mfd",
            mm = 0,
        }, -- end of mfd
    }, -- end of failures
} -- end of mission
